/* Self-hosted webfonts (from @fontsource v5 woff2, served out of /public/fonts).
 *
 * Why self-host instead of the prototype's Google Fonts <link>: keeps the app
 * offline-capable (PWA) and privacy-first — no per-load request to a third
 * party. Family names match the @microtourny/tokens FONT_FAMILY stacks
 * ('Geist', 'Geist Mono', 'Fraunces').
 *
 * Fraunces is loaded italic-only: it is used solely as the sparing
 * serif-italic headline accent (handoff §6a).
 */

/* ── Geist (sans) ─────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/geist-sans-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/geist-sans-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/geist-sans-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/geist-sans-latin-700-normal.woff2') format('woff2');
}

/* ── Geist Mono (tabular stats) ───────────────────────────────────────── */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/geist-mono-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/geist-mono-latin-500-normal.woff2') format('woff2');
}

/* ── Fraunces (serif-italic accent only) ──────────────────────────────── */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/fraunces-latin-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/fraunces-latin-500-italic.woff2') format('woff2');
}
