/* Tipografía self-hosted (Inter + Sora).
   Hasta ahora el CSS pedía "Inter, Montserrat, ..." pero NINGUNA familia
   se cargaba (sin @font-face ni <link>), así que toda la app caía a
   Segoe UI. Aquí se cargan de verdad, sin dependencia de Google Fonts
   (mejor latencia y sin enviar IP de los clubes a terceros).
   Subset 'latin': cubre el español completo (incluye á é í ó ú ñ ü ¿ ¡). */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/sora-latin.woff2') format('woff2');
}
