/* The Seasons - self-hosted. Place the font files in /public/fonts/the-seasons/
   and these @font-face rules will pick them up automatically. If the files are
   missing, the typography stack falls back to Italiana automatically.
   Source: https://dafontfile.org/the-seasons-font/

   Moved out of index.html's inline <style> block (2026-08-08) because an
   inline <style> tag combined with this app's build.rollupOptions.manualChunks
   config triggers a Vite 6.4.x "vite:html-inline-proxy ... No matching HTML
   proxy module found" build failure. An external stylesheet referenced via
   <link rel="stylesheet"> sidesteps that code path entirely and is otherwise
   behaviorally identical. */
@font-face {
  font-family: 'The Seasons';
  src: url('/fonts/the-seasons/the-seasons-regular.woff2') format('woff2'),
       url('/fonts/the-seasons/the-seasons-regular.woff') format('woff'),
       url('/fonts/the-seasons/the-seasons-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'The Seasons';
  src: url('/fonts/the-seasons/the-seasons-light.woff2') format('woff2'),
       url('/fonts/the-seasons/the-seasons-light.woff') format('woff'),
       url('/fonts/the-seasons/the-seasons-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'The Seasons';
  src: url('/fonts/the-seasons/the-seasons-bold.woff2') format('woff2'),
       url('/fonts/the-seasons/the-seasons-bold.woff') format('woff'),
       url('/fonts/the-seasons/the-seasons-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
