/* Vendora Genie — brand font override for the apex marketing site.
   Loaded AFTER the design-system tokens so it wins. Replaces the design kit's
   placeholder substitutes (Cormorant Garamond / Jost) with the real brand
   stack: Playfair Display (display), Nunito (body), Quicksand (labels).
   Playfair Display + JetBrains Mono are already pulled in by tokens/fonts.css;
   here we add Nunito + Quicksand. */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Nunito', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

/* Brand eyebrows/overlines historically used Quicksand with wide tracking. */
.vg-eyebrow { font-family: 'Quicksand', var(--font-body); }
