/**
 * @file fonts.css
 * @description Defines @font-face rules for self-hosted Inter font
 * @author BattleGuessDev
 * @version 1.1.0
 * @date 2025-10-01
 * @changelog
 * - 2025-10-01: Removed unused Roboto Mono font declarations
 * - 2025-08-28: Initial creation with Inter and Roboto Mono
 */

/* See OFL-Inter.txt for Inter (OFL) licensing details */

/** Inter Regular Font */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
         url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    /* Self-hosted Inter regular font for consistent typography with WOFF2 and WOFF fallback */
}
