/* ========================
   Font Face Declarations
   ======================== */

/* Stanley Bold */
@font-face {
  font-family: 'Stanley';
  src: url('./Stanley-Bold/Stanley-Bold.woff2') format('woff2'),
       url('./Stanley-Bold/Stanley-Bold.woff') format('woff'),
       url('./Stanley-Bold/Stanley-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* Stanley Bold Italic */
@font-face {
  font-family: 'Stanley';
  src: url('./Stanley-Bold-Italic/Stanley-Bold-Italic.woff2') format('woff2'),
       url('./Stanley-Bold-Italic/Stanley-Bold-Italic.woff') format('woff'),
       url('./Stanley-Bold-Italic/Stanley-Bold-Italic.otf') format('opentype');
  font-weight: bold;
  font-style: italic;
}

/* Stanley Regular */
@font-face {
  font-family: 'Stanley';
  src: url('./Stanley-Regular/Stanley-Regular.woff2') format('woff2'),
       url('./Stanley-Regular/Stanley-Regular.woff') format('woff'),
       url('./Stanley-Regular/Stanley-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Stanley Italic */
@font-face {
  font-family: 'Stanley';
  src: url('./Stanley-Italic/Stanley-Italic.woff2') format('woff2'),
       url('./Stanley-Italic/Stanley-Italic.woff') format('woff'),
       url('./Stanley-Italic/Stanley-Italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}

/* Stanley Poster */
@font-face {
  font-family: 'Stanley Poster';
  src: url('./Stanley-Poster/Stanley-Poster.woff2') format('woff2'),
       url('./Stanley-Poster/Stanley-Poster.woff') format('woff'),
       url('./Stanley-Poster/Stanley-Poster.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* ========================
   Font Classes
   ======================== */

/* Classe pour Stanley Bold */
.font-stanley-bold {
  font-family: 'Stanley';
  font-weight: bold;
  font-style: normal;
}

/* Classe pour Stanley Bold Italic */
.font-stanley-bold-italic {
  font-family: 'Stanley';
  font-weight: bold;
  font-style: italic;
}

/* Classe pour Stanley Regular */
.font-stanley-regular {
  font-family: 'Stanley';
  font-weight: normal;
  font-style: normal;
}

/* Classe pour Stanley Italic */
.font-stanley-italic {
  font-family: 'Stanley';
  font-weight: normal;
  font-style: italic;
}

/* Classe pour Stanley Poster */
.font-stanley-poster {
  font-family: 'Stanley Poster';
  font-weight: normal;
  font-style: normal;
}

/* ========================
   Example Utility Classes
   ======================== */

/* Centered text */
.text-center {
  text-align: center;
}

/* Bold text */
.text-bold {
  font-weight: bold;
}

/* Italic text */
.text-italic {
  font-style: italic;
}
