/* Volcanic Coast design tokens.
   Heading: Newsreader (Google Fonts, OFL) — open-source substitute for GT Sectra.
   Body: General Sans (Fontshare, free for commercial use) — substitute for Sohne.
   Both self-hosted below; swap the @font-face src paths if licensed originals
   are supplied later, nothing else in the CSS needs to change. */

@font-face {
  font-family: 'Newsreader';
  src: url('fonts/newsreader-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Newsreader';
  src: url('fonts/newsreader-600-italic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('fonts/general-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('fonts/general-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --vc-bg: #F5F3EE;
  --vc-surface: #FFFFFF;
  --vc-ink: #14181C;
  --vc-accent: #1C6E8C;
  --vc-support: #8A9A93;
  --vc-tag: #B4472A;

  --vc-font-heading: 'Newsreader', Georgia, 'Iowan Old Style', serif;
  --vc-font-body: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --vc-space-sm: 8px;
  --vc-space-md: 24px;
  --vc-space-lg: 64px;

  --vc-radius-sm: 2px;
  --vc-radius-md: 6px;
}