/* Fuentes alojadas en nuestro propio dominio — antes se pedían directo a
   Google Fonts (fonts.googleapis.com), pero eso manda la IP de cada
   visitante a Google en cada carga de página. Una corte alemana falló en
   2022 que eso viola el GDPR, y generó una ola de demandas automatizadas.
   Autohospedar las elimina el riesgo por completo, y de paso carga más
   rápido (una conexión externa menos). Solo subset "latin" — cubre todos
   los acentos y la ñ del español, no hace falta latin-ext. */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('fonts/dm-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url('fonts/dm-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url('fonts/dm-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url('fonts/dm-sans-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url('fonts/plus-jakarta-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url('fonts/plus-jakarta-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url('fonts/plus-jakarta-sans-700.woff2') format('woff2');
}
