/* FUENTES SERVIDAS POR NOSOTROS — cero CDN.
   Antes esto colgaba de fonts.googleapis.com y de unpkg.com: en un celular con
   señal mala la app arrancaba sin tipografía y con los iconos en blanco, y
   dependía de que dos servidores ajenos siguieran vivos.

   Roboto Mono es VARIABLE: un solo archivo por subconjunto cubre 300-700.
   De Phosphor solo cargamos "regular" (la app usa 6 iconos) — el archivo de
   los rellenos, otros 144 KB, no se usaba para nada. */

/* --- Roboto Mono (variable 300-700) --- */
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('./RobotoMono-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;
}
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('./RobotoMono-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;
}

/* --- Phosphor (iconos como texto, igual que en la app de escritorio) --- */
@font-face {
  font-family: 'Phosphor';
  src: url('./Phosphor.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.ph {
  font-family: 'Phosphor' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Solo los iconos que la app usa. Uno nuevo = agregar su línea aquí
   (el código sale de node_modules/@phosphor-icons/web/src/regular/style.css). */
.ph.ph-caret-left:before       { content: "\e138"; }
.ph.ph-file:before             { content: "\e230"; }
.ph.ph-paper-plane-tilt:before { content: "\e398"; }
.ph.ph-paperclip:before        { content: "\e39a"; }
.ph.ph-plus:before             { content: "\e3d4"; }
.ph.ph-sign-out:before         { content: "\e42a"; }
