/* Self-hosted fonts (Fjalla One + Work Sans), replacing the Google Fonts
   CDN — that was another external dependency the app used to just hang on
   if it wasn't reachable offline, same class of problem the Supabase
   script fix addressed. Shared by every page (not just app.html) so there
   is exactly one place to update these. woff2 only: it's supported by
   every browser this app targets (iOS Safari included), so there's no
   need for the old woff/ttf fallback chain some sites still ship. */
@font-face {
  font-family: 'Fjalla One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/fjalla-one-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/work-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/work-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/work-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/work-sans-700.woff2') format('woff2');
}
