/* Typography - Google Fonts */

/* Variables de polices */
:root {
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* Base */
body {
    font-family: var(--font-primary);
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* Navigation */
.nav-links a {
    font-family: var(--font-primary);
}

/* Boutons */
.btn {
    font-family: var(--font-primary);
}

/* Section titles */
.section-title {
    font-family: var(--font-heading);
}

/* Product titles */
.product-title {
    font-family: var(--font-heading);
}

/* Price */
.product-price, .current-price {
    font-family: var(--font-primary);
}

/* Category labels */
.product-category {
    font-family: var(--font-primary);
}

/* Footer */
.footer h4 {
    font-family: var(--font-heading);
}

.footer p, .footer a {
    font-family: var(--font-primary);
}

p, span, select, option, input, button, ul,li, ol, a, label, small, div {
    font-family: var(--font-primary);
}