/* Fonts bundled locally so the app is fully self-contained — no CDN request,
   works offline, and no third-party (Google) connection at runtime. These are
   the latin subsets of the two Google Fonts families; Baloo 2's single woff2 is
   a variable font whose weight axis covers the 500/700/800 the game uses.
   Family names must stay exact — game.js draws canvas text with them by name. */
@font-face {
  font-family: 'Mochiy Pop One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/mochiypopone-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/baloo2-latin.woff2') format('woff2');
}
