/** Shopify CDN: Minification failed

Line 43:2 "font-famyly" is not a known CSS property
Line 45:0 Expected "}" to go with "{"

**/
/* 
  Landing Page - Bra Fitting CSS
*/

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --font-body-family: 'Lato', sans-serif;
}

/* ===== RESET & BASE ===== */
.landing-page {
  font-family: var(--font-body);
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4 {
  font-family: var(--font-heading);
}

/* ===== UTILITIES ===== */
.text-primary {
  color: var(--primary);
.rich-text > :first-child:is(.rich-text__subheading) {
  background: #fff;
  border: solid 1px #f2d2d6;
  border-radius: 80px;
  font-family: "Lato", sans-serif;
}
.highlight-text {
  font-famyly: 'Playfair Display', serif;
}
