/* =========================================================
   Base — @font-face (fontes self-hosted)
   Servidas localmente a partir de assets/fonts/ para que o site
   não dependa de CDN externo quando publicado em servidor próprio.

   Os arquivos enviados são .TTF (família Barlow completa).
   IMPORTANTE: os nomes abaixo respeitam EXATAMENTE o caixa-alta dos
   arquivos enviados — em servidores Linux o nome diferencia maiúsculas
   de minúsculas, então não altere a grafia sem renomear o arquivo.
   ========================================================= */

/* ---------------------------------------------------------
   Barlow — fonte principal (sans-serif)
   Mapa peso → arquivo:
     200 ExtraLight · 300 Light · 400 Regular ·
     500 Medium · 600 SemiBold · 700 Bold
   --------------------------------------------------------- */
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../../assets/fonts/BARLOW-EXTRALIGHT.TTF") format("truetype");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../../assets/fonts/BARLOW-LIGHT.TTF") format("truetype");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../assets/fonts/BARLOW-REGULAR.TTF") format("truetype");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../../assets/fonts/BARLOW-MEDIUM.TTF") format("truetype");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../../assets/fonts/BARLOW-SEMIBOLD.TTF") format("truetype");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../assets/fonts/BARLOW-BOLD.TTF") format("truetype");
}

/* Itálicos (caso necessário em algum texto) */
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../../assets/fonts/BARLOW-ITALIC.TTF") format("truetype");
}

/* ---------------------------------------------------------
   Playfair Display — fonte display (serif) do wordmark "ARTS"
   Os arquivos ainda NÃO foram enviados; enquanto isso o wordmark
   usa o fallback serifado do sistema (Georgia/Times).
   Para usar Playfair: coloque os .TTF/.woff2 em assets/fonts/ e
   reative o bloco abaixo com os nomes corretos.
   --------------------------------------------------------- */
/*
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../../assets/fonts/PLAYFAIRDISPLAY-REGULAR.TTF") format("truetype");
}
*/
