/*
 * Inter — the Zetta Design System's structural typeface (display, headings,
 * app-header brand). Geist covers operational text; Geist Mono covers code.
 *
 * FIXED IN P1.1 (ZFZDSM-3). These files were already on disk but Inter was dead
 * on arrival, for two independent reasons:
 *
 *   1. This stylesheet was never linked from `src/index.html`. Geist and the
 *      legacy Material Icons were; Inter was not.
 *   2. It declared the family as `'Inter var'`, while every consumer asks for
 *      `'Inter'` — so even once linked, no `font-family: 'Inter'` rule would ever
 *      have matched it.
 *
 * Either fault alone was enough to make it silently fall back to the generic
 * `sans-serif`, which is what `shared/constant/evaluation-pdf-template.constant.ts`
 * has been rendering with. The family is now `'Inter'`, matching the v1.6
 * `typography` frontmatter (`fontFamily: 'Inter'`) and the `--font-display` token.
 *
 * The `?v=3.18` cache-busting query strings are dropped and the `url()` values now
 * carry the `./` prefix, so these resolve exactly the way `geist.css` does.
 *
 * Variable font, weight axis 100–900. Zetta uses 400/500/600/700/800.
 */

@font-face {
  font-family: 'Inter';
  src: url('./Inter-roman.var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./Inter-italic.var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
