/* Regular */
@font-face{
  font-family: "Mi Fuente";
  src: url("../fonts/MiFuente/MiFuente-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Bold */
@font-face{
  font-family: "Mi Fuente";
  src: url("../fonts/MiFuente/MiFuente-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Italic (si la tienes) */
@font-face{
  font-family: "Mi Fuente";
  src: url("../fonts/MiFuente/MiFuente-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Uso global recomendado */
:root { --font-primary: "Mi Fuente", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }
body { font-family: var(--font-primary); }