/* Intégration des polices pour La Cristallerie */

/* Inter Tight - chargement local */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/Inter_Tight/InterTight-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/Inter_Tight/InterTight-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* Tan Pearl - chargement local */
@font-face {
    font-family: 'Tan Pearl';
    src: url('../fonts/tan-pearl-font/tan-pearl.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Variables de polices */
:root {
    --font-primary: 'Tan Pearl', serif;
    --font-secondary: 'Inter Tight', sans-serif;
}

/* Styles de base pour les textes */
body {
    font-family: var(--font-secondary);
}

h1, h2, h3, h4, h5, h6, .title, .heading {
    font-family: var(--font-primary);
}

/* Classes utilitaires pour les polices */
.font-tan-pearl {
    font-family: var(--font-primary);
}

.font-inter {
    font-family: var(--font-secondary);
}
