/* Censum global typeface override -> Mona Sans (self-hosted variable font).
   One file, linked into every root document. The universal !important rule
   beats every non-important per-page font-family (Inter, JetBrains Mono, and
   the Tailwind defaults). Safe because the site uses inline SVG icons, not an
   icon font, so no glyphs are clobbered. */

@font-face {
  font-family: 'Mona Sans';
  src: url('/static/fonts/mona-sans.woff2') format('woff2');
  font-weight: 200 900;     /* variable weight axis */
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}
