/* ============================================================
   Buzzz web fonts — the SAME files the app ships.

   ⚠️ Self-hosted, not Google Fonts, and that is not a preference.
   buzzz.shop sends a strict CSP:
       style-src 'self' 'unsafe-inline'; font-src 'self'
   which refuses both the fonts.googleapis.com stylesheet and the
   fonts.gstatic.com files. An @import for them is dropped in silence and
   every heading falls back to the system cursive — which is exactly what
   shipped and what a customer spotted: the site's wordmark was a formal
   calligraphic serif while the app's is a brush script.

   Serving the app's own .ttf files satisfies 'self' with no security header
   weakened, removes a third-party round trip, and guarantees the two surfaces
   render from byte-identical files rather than from two copies that can drift.

   SIL Open Font License — see /fonts/OFL.txt.
   ============================================================ */
@font-face{font-family:'Yellowtail';font-style:normal;font-weight:400;
  font-display:swap;src:url('/fonts/Yellowtail-Regular.ttf') format('truetype')}
@font-face{font-family:'Outfit';font-style:normal;font-weight:400;
  font-display:swap;src:url('/fonts/Outfit-Regular.ttf') format('truetype')}
@font-face{font-family:'Outfit';font-style:normal;font-weight:500;
  font-display:swap;src:url('/fonts/Outfit-Medium.ttf') format('truetype')}
@font-face{font-family:'Outfit';font-style:normal;font-weight:600;
  font-display:swap;src:url('/fonts/Outfit-SemiBold.ttf') format('truetype')}
@font-face{font-family:'Outfit';font-style:normal;font-weight:700;
  font-display:swap;src:url('/fonts/Outfit-Bold.ttf') format('truetype')}
/* 800/900 map onto Bold: the family ships no heavier cut, and letting the
   browser synthesise one produces a smeared fake-bold. */
@font-face{font-family:'Outfit';font-style:normal;font-weight:800;
  font-display:swap;src:url('/fonts/Outfit-Bold.ttf') format('truetype')}
@font-face{font-family:'Outfit';font-style:normal;font-weight:900;
  font-display:swap;src:url('/fonts/Outfit-Bold.ttf') format('truetype')}
