/* Charlotte Fonts Pack
   ------------------------------------------------------------------
   Included families:
   - Bembo Std (otf)
   - Charlotte Caslon (optional italic, if file present)

   Files expected under ./webfonts/
   Generated for WordPress enqueue. Use with:
     font-family: 'Bembo Std';  /* 400,600,700,800 normal/italic (as available) */
     font-family: 'Charlotte Caslon'; /* (if present) */
   ------------------------------------------------------------------ */

@font-face {
  font-family: 'Bembo Std';
  src: url('./webfonts/BemboStd.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bembo Std';
  src: url('./webfonts/BemboStd-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Bembo Std';
  src: url('./webfonts/BemboStd-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bembo Std';
  src: url('./webfonts/BemboStd-SemiboldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Bembo Std';
  src: url('./webfonts/BemboStd-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bembo Std';
  src: url('./webfonts/BemboStd-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Bembo Std';
  src: url('./webfonts/BemboStd-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bembo Std';
  src: url('./webfonts/BemboStd-ExtraBoldItalic.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* Charlotte Caslon font pack */
/* Place this CSS next to the font file or adjust the URL path accordingly */
@font-face {
  font-family: "CaslonItalic";
  src: url("/webfonts/Caslon-Italic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}