/*
 * fonts.css — @font-face das três famílias do design system ORDO (Tec Capital).
 *
 * Cópia fiel de `tec-ordo-dev/packages/ui/src/fundamentos/fonts.css`, com uma única mudança:
 * `src` aqui é relativo a `assets/css/` (onde este arquivo é servido em cada site), não absoluto a
 * partir da raiz do domínio — os arquivos `.ttf` vivem em `assets/fonts/`, irmã de `assets/css/`.
 *
 * `font-display: swap` em todas: o texto aparece com a fonte do sistema imediatamente e troca
 * quando o arquivo chega, em vez de ficar invisível até o download terminar.
 */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/inter-400.ttf) format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/inter-500.ttf) format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/inter-600.ttf) format("truetype");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/jetbrains-mono-400.ttf) format("truetype");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/jetbrains-mono-500.ttf) format("truetype");
}
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url(../fonts/merriweather-400.ttf) format("truetype");
}
