/* Variable pour la police */
:root {
    --font-baloo: 'Baloo 2', cursive;
}

/* SOLUTION : !important pour surcharger Bootstrap */
body,
.btn,
.card,
.form-control,
.form-label,
.badge,
h1, h2, h3, h4, h5, h6,
.nav-link,
.dropdown-item {
    font-family: var(--font-baloo) !important;
}

/* Poids spécifiques */
body {
    font-weight: 400 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600 !important;
}

.btn {
    font-weight: 600 !important;
}

.badge {
    font-weight: 600 !important;
}

.stat-number {
    font-weight: 800 !important;
}

.nav-text,
.action-text {
    font-weight: 500 !important;
}