/*
 * Fuente "Inter" servida localmente (antes se cargaba desde fonts.googleapis.com,
 * lo que bloqueaba el render de TODAS las pantallas cuando no hay internet).
 * Es un unico archivo variable: Google sirve el mismo .woff2 para los 4 pesos,
 * el navegador lo interpola segun font-weight. Subconjunto "latin" (cubre
 * acentos y ñ en español: U+0000-00FF).
 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter/inter-latin.woff2') format('woff2');
}
