/**
 * Century Gothic – globalnie (jak w Next.js)
 * Pliki w assets/fonts/ – działają na Macu, Windows i hostingu.
 */

@font-face {
  font-family: "Century Gothic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    local("Century Gothic"),
    local("CenturyGothic"),
    url("../fonts/century-gothic.woff") format("woff");
}

@font-face {
  font-family: "Century Gothic";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    local("Century Gothic Bold"),
    local("CenturyGothic-Bold"),
    url("../fonts/century-gothic-bold.woff") format("woff");
}

:root {
  --font-century: "Century Gothic", "CenturyGothic", "AppleGothic", "Futura", "Trebuchet MS", Arial, sans-serif;
  --font-sans: var(--font-century);
  --bs-font-sans-serif: var(--font-century);
  --bs-body-font-family: var(--font-century);
}

/* Globalnie – cała aplikacja (publiczna + admin) */
html,
body,
button,
input,
select,
textarea {
  font-family: var(--font-sans) !important;
}
