/*!
 *  Custom Font Style using Funnel_Display and Geist
 */

/* Funnel_Display font */
@font-face {
    font-family: 'Funnel_Display';
    src: url('../fonts/Funnel_Display/FunnelDisplay-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  /* Geist fallback font */
  @font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist/Geist-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  

  @font-face {
    font-family: 'FontAwesome';
    src: url('fonts/fontawesome-webfont.woff2') format('woff2'),
         url('fonts/fontawesome-webfont.woff') format('woff'),
         url('fonts/fontawesome-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  /* Remove Font Awesome font-face block entirely */
  /* Removed:
  @font-face {
    font-family: 'FontAwesome';
    ...
  }
  */
  
  /* Remove or override Font Awesome styles */
  .fa,
  .fa-lg {
    font-family: 'Funnel_Display', 'Geist','FontAwesome', sans-serif !important;
    font-style: normal;
    font-weight: normal;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: none;
  }
  
/* Funnel_Display for h1 only */
h1, h3,a {
  font-family: 'Funnel_Display', sans-serif;
}

/* Geist for all other text elements */
body, h2, h4, h5, h6, p, div, span {
  font-family: 'Geist', sans-serif;
}
  