/* assets/css/app.css */

/* Inter (TTF) - folosim fisierele existente din /assets/fonts/Inter/static/ */
@font-face{
  font-family: "Inter";
  src: url("/assets/fonts/Inter/static/Inter_18pt-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face{
  font-family: "Inter";
  src: url("/assets/fonts/Inter/static/Inter_18pt-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face{
  font-family: "Inter";
  src: url("/assets/fonts/Inter/static/Inter_18pt-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face{
  font-family: "Inter";
  src: url("/assets/fonts/Inter/static/Inter_18pt-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face{
  font-family: "Inter";
  src: url("/assets/fonts/Inter/static/Inter_18pt-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root{
  --pf-font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

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