/* ── THE MISSING @font-face BLOCK ─────────────────────────────────────────
   ms.css sets `font-family: Inter` and `font-family: Mono` throughout but the
   build never declares either face, so both silently fell back to system
   fonts. The stacks name "Segoe UI Variable Display", which is why it looked
   right on the machine it was built on and wrong everywhere else.

   These are the woff2 files memestock.run already serves from /assets/fonts —
   nothing new is downloaded. Anton keeps coming from Google Fonts, which the
   pages now link directly.

   FOR THE HANDOFF: the .woff2 files are not in the zip. They live on the
   server at /srv/sites/memestock.run/assets/fonts/ and this path resolves
   in production exactly as it does here.
   ──────────────────────────────────────────────────────────────────────── */
@font-face{font-family:Inter;src:url(/assets/fonts/inter500.woff2) format("woff2");font-weight:500;font-display:swap}
@font-face{font-family:Inter;src:url(/assets/fonts/inter700.woff2) format("woff2");font-weight:700;font-display:swap}
@font-face{font-family:Inter;src:url(/assets/fonts/inter900.woff2) format("woff2");font-weight:900;font-display:swap}
@font-face{font-family:Mono;src:url(/assets/fonts/mono400.woff2) format("woff2");font-weight:400;font-display:swap}
@font-face{font-family:Mono;src:url(/assets/fonts/mono700.woff2) format("woff2");font-weight:700;font-display:swap}
