/*
 * Urbanist — self-hosted @font-face
 * Copyright 2021 The Urbanist Project Authors — SIL Open Font License 1.1 (see OFL.txt)
 *
 * Uso: copie a pasta `urbanist/` para os assets do projeto e importe este css.
 * Usa as variable fonts (1 arquivo cobre os pesos 100–900).
 * Fallback: se preferir estáticas, troque os src para ./static/Urbanist-<Peso>.ttf
 */

@font-face {
  font-family: "Urbanist";
  src: url("./Urbanist-VariableFont_wght.ttf") format("truetype-variations"),
       url("./Urbanist-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("./Urbanist-Italic-VariableFont_wght.ttf") format("truetype-variations"),
       url("./Urbanist-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* Fonte global padrão */
:root {
  --font-urbanist: "Urbanist", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

html,
body {
  font-family: var(--font-urbanist);
}
