/* Example font declarations - Update the paths and font names based on your files */
@font-face {
  font-family: 'Glamour';
  src: url('./fonts/Glamour Regular Font.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* If you have the bold version */
@font-face {
  font-family: 'Slight';
  src: url('./fonts/Slight Regular Font.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Carly Font */
@font-face {
  font-family: 'Carly';
  src: url('./fonts/Carly-Regular.woff2') format('woff2'),
       url('./fonts/Carly-Regular.woff') format('woff'),
       url('./fonts/Carly-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Carly';
  src: url('./fonts/Carly-Medium.woff2') format('woff2'),
       url('./fonts/Carly-Medium.woff') format('woff'),
       url('./fonts/Carly-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Carly';
  src: url('./fonts/Carly-Bold.woff2') format('woff2'),
       url('./fonts/Carly-Bold.woff') format('woff'),
       url('./fonts/Carly-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Optima Font */
@font-face {
  font-family: 'Optima';
  src: url('./fonts/Optima-Regular.woff2') format('woff2'),
       url('./fonts/Optima-Regular.woff') format('woff'),
       url('./fonts/Optima-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Optima';
  src: url('./fonts/Optima-Medium.woff2') format('woff2'),
       url('./fonts/Optima-Medium.woff') format('woff'),
       url('./fonts/Optima-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Optima';
  src: url('./fonts/Optima-Bold.woff2') format('woff2'),
       url('./fonts/Optima-Bold.woff') format('woff'),
       url('./fonts/Optima-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
} 