/*
  Fonts — @font-face declarations only. This is its own file rather than
  forced into tokens.css (which is :root-values-only) or base.css (which
  is element-resets-only), because "declare a font resource" is a
  genuinely different job from either.

  Manrope, self-hosted, subsetted to Latin + common punctuation
  (22.9KB), variable across the full 200-800 weight range in one file —
  see ARCHITECTURE.md and the design system spec for why a single
  variable file beats separate static weights.

  This is the placeholder chosen so the full typography system —
  scale, rhythm, hierarchy — could be built now rather than waiting on
  a final brand typeface. Swapping it later is a two-line change: the
  font-family value here, and --font-family-base in tokens.css. Nothing
  else in the codebase references a font by name.

  Manrope is licensed under the SIL Open Font License 1.1 — see
  OFL.txt in this same folder.
*/

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-variable.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
