/* r71 — SELF-HOSTED INTER, THE FLICKER KILLER (owner order r71 item F).
   One variable WOFF2 (latin, wght 100–900, 48 KB) replaces five Google-hosted
   static weights. Two facts drive the two choices:
   1. SELF-HOST: a cross-origin font is a second connection + a live EEA
      consent exposure (LG München I, 3 O 17493/20 — damages for Google Fonts
      loaded pre-consent). Same-origin costs neither.
   2. font-display: OPTIONAL: `swap` REPAINTS the page when the font lands —
      that repaint IS the blink the owner sees. `optional` never swaps after
      first paint: with the preload in <head> the font is ready before render
      on every warm load and almost every cold one; when it loses the race the
      metric-matched 'Inter Fallback' (shared.css r18) renders the frame and
      NOTHING flashes. Zero-swap is the documented zero-CLS/zero-FOUT setting
      (web.dev font-best-practices; MDN @font-face/font-display).
   Stamped into every shell by dev/gen-langs.js — do not hand-edit pages. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: optional;
  src: url('inter-latin-wght-normal.woff2') format('woff2-variations'),
       url('inter-latin-wght-normal.woff2') format('woff2');
}
