/* Importation des polices Gotham et Montserrat pour l'identité visuelle de Chanel */

/* Importation de Montserrat depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Définition de Gotham Bold (si disponible localement) */
@font-face {
  font-family: 'Gotham Bold';
  src: url('/fonts/Gotham-Bold.woff2') format('woff2'),
       url('/fonts/Gotham-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Fallback vers Montserrat Bold si Gotham n'est pas disponible */
.font-chanel {
  font-family: 'Gotham Bold', 'Montserrat', sans-serif;
  font-weight: 700;
}

/* Styles spécifiques pour les titres */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Gotham Bold', 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
