/* ============================================================================
   Stellic — Font faces
   Source: Stellic Brand Guidelines p.34 (Type Families)
   Families:
   - Season Mix  (serif display)  — LICENSED. Self-hosted from assets/fonts/.
                  Provided weights: Light Medium (~350) [.otf only], Medium (500) + Italic.
   - Funnel Sans (sans)           — Google Fonts (Light 300 / Regular 400 / Medium 500).
   - Roboto Mono (mono)           — Google Fonts (Regular 400).
   ============================================================================ */

/* Google-hosted families (must precede @font-face per CSS @import rules) */
@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:wght@300;400;500;600&family=Roboto+Mono:wght@400;500&display=swap');

/* Season Mix — Light Medium (~350). Only an .otf was provided. */
@font-face {
  font-family: 'Season Mix';
  font-style: normal;
  font-weight: 350;
  font-display: swap;
  src: url('../assets/fonts/SeasonMix-Light-Medium.otf') format('opentype');
}

/* Season Mix — Medium (500) */
@font-face {
  font-family: 'Season Mix';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/SeasonMix-Medium.woff2') format('woff2'),
       url('../assets/fonts/SeasonMix-Medium.woff') format('woff');
}

/* Season Mix — Medium Italic (500) */
@font-face {
  font-family: 'Season Mix';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/SeasonMix-MediumItalic.woff2') format('woff2'),
       url('../assets/fonts/SeasonMix-MediumItalic.woff') format('woff');
}
