/**
 * Self-hosted brand fonts (DEV-001 §5 — no external font requests).
 *
 * Latin subset only. Inter is the variable font (covers 400–500 body weights);
 * Poppins 600/700 are the heading weights. font-display: swap avoids invisible
 * text during load. Files live in assets/fonts/ (relative url() below).
 */

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

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/poppins-600.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/poppins-700.woff2") format("woff2");
}
