/* Self-hosted webfonts (latin subset).
   Origem: @fontsource/inter 5.0.18 + @fontsource/space-grotesk 5.0.18.
   Substitui o request a fonts.googleapis.com/css2 e elimina o risco SRI
   (CWE-353) de assets externos sem integrity hash.
   Re-baixar com:
     for w in 400 500 600 700 800; do
       curl -sSL -o "api/static/fonts/inter-latin-$w-normal.woff2" \
         "https://cdn.jsdelivr.net/npm/@fontsource/inter@5.0.18/files/inter-latin-$w-normal.woff2"
     done
     for w in 500 600 700; do
       curl -sSL -o "api/static/fonts/space-grotesk-latin-$w-normal.woff2" \
         "https://cdn.jsdelivr.net/npm/@fontsource/space-grotesk@5.0.18/files/space-grotesk-latin-$w-normal.woff2"
     done
*/

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/static/fonts/inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/static/fonts/inter-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/static/fonts/inter-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/static/fonts/inter-latin-800-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/static/fonts/space-grotesk-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/static/fonts/space-grotesk-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/static/fonts/space-grotesk-latin-700-normal.woff2') format('woff2');
}
