/* ============================================================
   Forward Business — Webfonts
   ------------------------------------------------------------
   FONTS:
     - Brandon Grotesque Medium -> REAL brand display face (client-supplied,
       self-hosted; HVD Fonts, licensed). Used for the "Forward" wordmark
       and all headings. Jost remains only as a fallback in the stack.
     - Mulish        -> body / UI copy        (SUBSTITUTION - awaiting real file)
     - Kaushan Script -> handwritten brush-script accents (SUBSTITUTION)
     - Share Tech Mono -> FREYA techy / mono labels    (SUBSTITUTION)
   Body + script font files still needed from the client.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800&family=Kaushan+Script&family=Share+Tech+Mono&display=swap');

/* Real brand display face supplied by the client (HVD Fonts, licensed). */
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../assets/fonts/BrandonGrotesque-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Raw family stacks */
  --font-display: 'Brandon Grotesque', 'Jost', 'Century Gothic', system-ui, sans-serif;
  --font-body: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-script: 'Kaushan Script', 'Segoe Script', cursive;
  --font-mono: 'Share Tech Mono', 'SFMono-Regular', ui-monospace, monospace;
}
