/* assets/fonts.css */
@font-face {
    font-family: "Chalet-LondonSixty";
    src: url("./fonts/chalet-62066/Chalet-LondonSixty.woff2") format("woff2"),
        url("./fonts/chalet-62066/Chalet-LondonSixty.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Variabili font */
:root {
    --ff-display: "Chalet-LondonSixty", sans-serif;
    --ff-body: "Chalet-LondonSixty", sans-serif;
}

/* Body */
body {
    font-family: var(--ff-body);
}

/* Titoli / elementi brand */
h1,
h2,
h3,
h4,
h5,
h6,
.nav-logo,
.hero__title {
    font-family: var(--ff-display);
    font-weight: 400;
}

/* (opzionale) utility class */
.display-font {
    font-family: var(--ff-display);
}