/**
 * Font Loading Performance Optimizations
 * 
 * This file adds font-display: swap to icon fonts that don't have it,
 * preventing render-blocking and invisible text during font loading.
 * 
 * font-display: swap ensures:
 * - Text renders immediately with fallback fonts
 * - Custom fonts swap in when loaded (no blank text period)
 * - Better Core Web Vitals (FCP, LCP)
 */

@font-face {
  font-family: "hgi-bulk-rounded";
  src: url("/fonts/hugeicons/hgi-bulk-rounded.woff2?t=1717350761178") format("woff2");
  font-display: swap;
}