/* ════════════════════════════════════════════════════════════════════
   Delayer self-hosted UI typeface — Inter (variable, Latin subset).

   Canonical file, lives at ui/_shared/. Mirrored into each SPA's
   src/_shared/ by scripts/ci/sync_shared.sh (CI gates drift), so both
   zero-build `aws s3 sync` deploys ship it under their own bucket root.
   Served same-origin from each app's CloudFront — no external CDN, so a
   `font-src 'self'` CSP suffices. Linked AFTER tokens.css and BEFORE each
   app's own stylesheet, so @font-face is registered before base.css sets
   the Inter-first body stack.

   url() is resolved relative to THIS stylesheet, so "Inter.woff2" points
   at the sibling file under whichever bucket root serves it.
   ════════════════════════════════════════════════════════════════════ */
@font-face {
  font-family: "Inter";
  src: url("Inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
