/**
 * Genty Font Face Declarations
 *
 * To complete setup:
 * 1. Add your Genty font files (.woff, .woff2, .ttf) to this directory (/frontend/public/fonts/)
 * 2. Update the src URLs below to match your font filenames
 *
 * Example font files:
 * - Genty-Regular.woff2
 * - Genty-Regular.woff
 * - Genty-Regular.ttf
 */

@font-face {
  font-family: 'Genty';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url('/fonts/Genty-Regular.woff2') format('woff2'),
    url('/fonts/Genty-Regular.woff') format('woff'),
    url('/fonts/Genty-Regular.otf') format('opentype');
}

/* Add additional font-face declarations if you have different weights */
/* Example for bold weight:
@font-face {
  font-family: 'Genty';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Genty-Bold.woff2') format('woff2'),
       url('/fonts/Genty-Bold.woff') format('woff'),
       url('/fonts/Genty-Bold.ttf') format('truetype');
}
*/
