/* Local font bundle for the project
   Place the font files in the same folder this file resides in, e.g.
   - src/assets/fonts/NotoSans-Regular.woff2
   - src/assets/fonts/NotoSans-Bold.woff2

   The project expects these filenames by default. If you choose different
   filenames adapt the `src` URLs below accordingly.
*/

@font-face {
  font-family: 'Noto Sans';
  src: url('./NotoSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('./NotoSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Fallback stack */
body {
  font-family: 'Noto Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

