/* Aktiv Grotesk @font-face — lazy-loaded via <link media="print" onload>.
   Inlinad CSS (astro inlineStylesheets: always) skulle annars tvinga browsern
   att direkt hamta alla 6 fonter pa VeryHigh-priority och blockera LCP.
   Med denna separat och async laddning:
   - Fallback-face (Aktiv Grotesk Fallback) i global.css paintar initial text
   - Dessa @font-face upptacks efter main-thread idle, swappas in transparent
   - font-display:swap = ingen FOIT, CLS=0 pga fallback-metrics matchar Aktiv
*/

@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('/fonts/woff2/AktivGrotesk-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('/fonts/woff2/AktivGrotesk-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('/fonts/woff2/AktivGrotesk-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('/fonts/woff2/AktivGrotesk-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('/fonts/woff2/AktivGrotesk-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('/fonts/woff2/AktivGrotesk-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('/fonts/woff2/AktivGrotesk-XBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('/fonts/woff2/AktivGrotesk-XBoldItalic.woff2') format('woff2');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('/fonts/woff2/AktivGrotesk-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('/fonts/woff2/AktivGrotesk-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
