/* ===================================================================
   Marvital — Tipografías autohospedadas
   ===================================================================
   Antes venían de Google Fonts. Se trajeron al propio dominio por tres motivos,
   en este orden:

   1. SIN CONEXIÓN. Es la razón principal. La app está pensada para un buque con
      enlace satelital intermitente: si las fuentes viven en otro dominio, sin
      internet no bajan y toda la interfaz cae a la fuente del sistema. Ahora se
      precachean con el resto de la app y se ve igual con enlace o sin él.
   2. UNA IDA MENOS. La hoja de Google devuelve @font-face que apuntan a OTRO
      dominio (fonts.gstatic.com): eran dos conexiones nuevas antes de dibujar
      una letra. Sobre satélite eso se nota.
   3. PRIVACIDAD. Cada visita dejaba de pedirle los archivos a un tercero.

   Son las versiones VARIABLES: un solo archivo cubre todos los pesos (de 400 a
   800 en Inter), en vez de un archivo por peso. Por eso las dos familias enteras
   pesan 172 KB.

   Se bajan sólo los subconjuntos latin y latin-ext: la app es en español y el
   cirílico, griego y vietnamita que sirve Google acá no se usan nunca.

   LICENCIA: Inter (c) The Inter Project Authors y JetBrains Mono (c) JetBrains,
   ambas bajo SIL Open Font License 1.1, que permite expresamente
   autohospedarlas. Ver LICENCIA-FUENTES.txt en esta misma carpeta.
   =================================================================== */


/* Inter · latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fuentes/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Inter · latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fuentes/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* JetBrains Mono · latin-ext */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fuentes/jetbrains-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* JetBrains Mono · latin */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fuentes/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
