/** Shopify CDN: Minification failed

Line 12:0 Unexpected "@font-face"

**/
CSS
/* ==========================================================================
   1. REGISTER REGULAR & MEDIUM WEIGHTS
   ========================================================================== */

/* Regular (400) */
@font-face {
  font-family: 'Avenir Next LT Pro';
  src: url('{{ "AvenirNextLTPro-Regular.woff2" | asset_url }}') format('woff2'),
       url('{{ "AvenirNextLTPro-Regular.woff" | asset_url }}') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Medium (500) */
@font-face {
  font-family: 'Avenir Next LT Pro';
  src: url('{{ "AvenirNextLTPro-Medium.woff2" | asset_url }}') format('woff2'),
       url('{{ "AvenirNextLTPro-Medium.woff" | asset_url }}') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


/* ==========================================================================
   2. APPLY REGULAR (BODY / PARAGRAPHS)
   ========================================================================== */
body, p, span, li, input, select, textarea {
  font-family: 'Avenir Next LT Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 400 !important;
}


/* ==========================================================================
   3. APPLY MEDIUM (HEADINGS, BUTTONS, LINKS, STYLED TEXT)
   ========================================================================== */
/* Headings */
h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Avenir Next LT Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 500 !important;
}

/* Links, buttons, bold text, table headers */
a, button, .btn, .button, strong, b, th {
  font-weight: 500 !important;
}


/* ==========================================================================
   4. OVERRIDE SHOPIFY THEME VARIABLES
   ========================================================================== */
:root {
  --font-body-family: 'Avenir Next LT Pro', sans-serif !important;
  --font-heading-family: 'Avenir Next LT Pro', sans-serif !important;
  --font-body-weight: 400 !important;
  --font-heading-weight: 500 !important;
}