/* Self-hosted fonts — no Google Fonts CDN dependency (unreliable/blocked in
   some regions, which left icons rendering as ligature text like "dns"/"lock"). */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/Inter-Variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Material Icons Round';
  font-style: normal;
  font-weight: 400;
  /* block: keep the ligature name invisible until the glyph font loads,
     instead of briefly showing raw text over the inputs. */
  font-display: block;
  src: url('/fonts/MaterialIconsRound-Regular.otf') format('opentype');
}

.material-icons-round {
  font-family: 'Material Icons Round';
  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;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
