/*
 * Stimeo UI Playground — self-hosted webfonts.
 *
 * Hanken Grotesk (UI + display) and JetBrains Mono (code), as variable fonts
 * (one woff2 covers the 400–800 weight range the brand uses). The woff2 binaries
 * live in public/fonts/ and are referenced by absolute URL, matching how the app
 * already serves /icon.svg from public/ (no asset-pipeline path resolution to get
 * wrong; trade-off: no digest fingerprinting, which is fine for fonts that rarely
 * change).
 *
 * Source: Fontsource @fontsource-variable v5.2.8 (SIL OFL 1.1). Replaces the
 * Google Fonts CDN @import the design-system export shipped — no third-party
 * request at runtime. The family/weight *tokens* live in tokens/typography.css;
 * this file only registers the @font-face sources.
 */

@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/hanken-grotesk-latin-wght-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Hanken Grotesk";
  font-style: italic;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/hanken-grotesk-latin-wght-italic.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/jetbrains-mono-latin-wght-normal.woff2") format("woff2");
}
