/*
 * Rembank Font - Local Self-Hosted Version
 * 
 * This is a fallback for when the CDN (fonts.cdnfonts.com) is unavailable.
 * 
 * To use: Download the font files and place them in public/fonts/
 * - rembank-regular.woff2
 * - rembank-regular.woff
 * 
 * Download from: https://www.cdnfonts.com/rembank.font
 */

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

/* Fallback if font files are not present */
@font-face {
  font-family: 'Rembank-Fallback';
  src: local('Impact'), local('Haettenschweiler'), local('Arial Black');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
