<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Font declarations for local fonts */

/* If you have local font files, place them in /fonts directory and reference them here */
/* This file provides a pattern for local font usage */

/* Example of how to declare local fonts:

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: local('Playfair Display Regular'), 
       url('/fonts/google/playfair-display-regular.woff2') format('woff2'),
       url('/fonts/google/playfair-display-regular.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  src: local('Playfair Display Medium'), 
       url('/fonts/google/playfair-display-medium.woff2') format('woff2'),
       url('/fonts/google/playfair-display-medium.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: local('Raleway Regular'), 
       url('/fonts/google/raleway-regular.woff2') format('woff2'),
       url('/fonts/google/raleway-regular.woff') format('woff');
  font-display: swap;
}

*/

/* Currently using CDN fonts with local font class names for easy migration */
.font-display {
  font-family: 'Playfair Display', serif;
}

.font-body {
  font-family: 'Raleway', sans-serif;
}

.font-alt {
  font-family: 'Montserrat', sans-serif;
}</pre></body></html>