/*
 * Worthkeep — Self-hosted font faces
 * Place actual font files (woff2 preferred, woff fallback) into the /fonts/ folder.
 * Download from Google Fonts and convert via google-webfonts-helper or similar.
 *
 * Expected filenames (adjust as needed once you drop in actual files):
 *   /fonts/cormorant-garamond-v16-latin-regular.woff2
 *   /fonts/cormorant-garamond-v16-latin-600.woff2
 *   /fonts/inter-v18-latin-regular.woff2
 *   /fonts/inter-v18-latin-500.woff2
 *   /fonts/inter-v18-latin-600.woff2
 */

/* Cormorant Garamond */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../../fonts/CormorantGaramond-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../../fonts/CormorantGaramond-Italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../../fonts/CormorantGaramond-SemiBold.woff2') format('woff2');
}

/* Inter */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../../fonts/Inter_18pt-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../../fonts/Inter_18pt-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../../fonts/Inter_18pt-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../../fonts/Inter_18pt-Bold.woff2') format('woff2');
}
