/* Self-hosted fonts (sovereign / on-premises — NO external CDN).
   Nexus must not depend on Google Fonts at runtime: it would leak user IPs to
   Google and break the "sovereign, on-premises" guarantee. These .ttf files were
   fetched once at build-authoring time and are served from 'self', so the strict
   CSP (font-src 'self') needs no external origin. Replaces the two
   fonts.googleapis.com <link>s that used to be in index.html. */

/* Inter — primary UI font (400/500/600/700) */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('./inter-400.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('./inter-500.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('./inter-600.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('./inter-700.ttf') format('truetype'); }

/* Lato (400/700 — the two weights Google actually served for the requested set) */
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 400; font-display: swap; src: url('./lato-400.ttf') format('truetype'); }
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 500; font-display: swap; src: url('./lato-400.ttf') format('truetype'); }
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 600; font-display: swap; src: url('./lato-700.ttf') format('truetype'); }
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 700; font-display: swap; src: url('./lato-700.ttf') format('truetype'); }

/* Roboto (300/400/500) */
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; font-display: swap; src: url('./roboto-300.ttf') format('truetype'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-display: swap; src: url('./roboto-400.ttf') format('truetype'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-display: swap; src: url('./roboto-500.ttf') format('truetype'); }

/* Material Icons — the ligature icon font (mat-icon). Without this, mat-icons
   render their ligature TEXT ("attach", "send", …) instead of the glyph. */
@font-face { font-family: 'Material Icons'; font-style: normal; font-weight: 400; font-display: block; src: url('./material-icons.ttf') format('truetype'); }
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
