/* 
 * Google Fonts Security Override - ObservePoint Compliance
 * This file blocks any attempt to load external fonts from Google APIs
 * Place this import LAST in your styles to ensure it takes precedence
 */

/* Block any external font loading attempts */
@media screen {
  /* Override any potential @import attempts */
  * {
    font-display: block !important;
  }
  
  /* Force all Material Icons to use local font */
  .material-icons, .mat-icon, [class*="material-icons"] {
    font-family: 'Material Icons' !important;
    src: url('../fonts/2fcrYFNaTjcS6g4U3t-Y5ZjZjT5FdEJ140U2DJYC3mY.woff2') format('woff2') !important;
  }
  
  /* Hide any external font link elements that may be injected */
  link[href*="fonts.googleapis.com"],
  link[href*="fonts.gstatic.com"],
  link[href*="ajax.googleapis.com"] {
    display: none !important;
  }
}

/* Print media protection */
@media print {
  * {
    font-display: block !important;
  }
}