/* lato-regular - latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-v24-latin-ext-regular.woff2') format('woff2');
  }
  
  /* lato-700 - latin-ext */
  @font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v24-latin-ext-700.woff2') format('woff2');
  }

  /* lato-700 - latin-ext */
  @font-face {
    font-display: swap;
    font-family: 'Astoria';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/astoria-medium-webfont.woff2') format('woff2');
  }
  
  /* Apply fonts globally */
  :root {
    --font-primary: 'Lato', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-heading: 'Astoria', 'Lato', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  }
  
  body {
    font-family: var(--font-primary);
    font-weight: 400;
  }
  
  h1, h2, h3, h4, h5, h6,
  .site-navigation,
  .button,
  strong,
  th {
    font-weight: 700;
  }

  h1, h2 {
    font-family: var(--font-heading);
    -webkit-font-smoothing: antialiased;
  }