/* Self-hosted Baloo 2 (SIL OFL — see OFL.txt) — the same variable font the
   Blockmatic app bundles at mobile/composeApp/src/commonMain/composeResources/
   font/baloo2.ttf for its headline/title Material roles. One variable-font
   file covers the whole Regular→ExtraBold range, so a single @font-face with
   a weight range is enough — no per-weight duplicate downloads. Loaded via
   `font-display: swap` so first paint never blocks on it; the fallback
   system stack (see tailwind.config.mjs) renders immediately and swaps in
   once this loads. */
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('baloo2.ttf') format('truetype');
}
