/* Self-hosted Nunito @font-face rules.
   Lives under public/ (not src/) so it's served as a plain static file --
   untouched by webpack/css-loader -- and linked from index.html via
   %PUBLIC_URL%/fonts/fonts.css. That matters because these url() paths are
   relative to THIS file's own folder (public/fonts/), which is exactly
   where the .woff2 files sit, so the browser resolves them the normal way
   with no bundler involved.

   Files sourced from the @fontsource/nunito npm package, not loaded from
   Google's CDN -- a real environment had Nunito failing to load from
   fonts.googleapis.com entirely (confirmed via document.fonts: every
   Nunito FontFace stayed 'unloaded' even after document.fonts.ready
   resolved, while a sibling tab on a different network path loaded it
   fine), so the app was silently falling back to the system font there
   with no visible error. Self-hosting removes the cross-origin request
   completely -- these files ship as part of the same build/origin as
   everything else, so no proxy/firewall/extension that treats third-party
   font CDNs differently can cause this again, on any machine, for either
   environment. */
@font-face { font-family: 'Nunito'; font-style: normal; font-weight: 400; font-display: swap; src: url('nunito-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Nunito'; font-style: italic; font-weight: 400; font-display: swap; src: url('nunito-latin-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Nunito'; font-style: normal; font-weight: 500; font-display: swap; src: url('nunito-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Nunito'; font-style: normal; font-weight: 600; font-display: swap; src: url('nunito-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Nunito'; font-style: normal; font-weight: 700; font-display: swap; src: url('nunito-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Nunito'; font-style: normal; font-weight: 800; font-display: swap; src: url('nunito-latin-800-normal.woff2') format('woff2'); }
