11// all other displays are default bootstrap styling
22.display-2 {
3+ font-family :var (--font-family-primary );
34font-weight :$font-weight-bold ;
45font-size :4rem ;
56line-height :80px ;
67}
78
89.h1-big {
10+ font-family :var (--font-family-primary );
911font-weight :$font-weight-bold ;font-size :var (--h1-big-font-size );line-height :var (--h1-big-line-height );
1012@include media-breakpoint-down (md) {
1113font-size :48px ;line-height :52px ;
1214 }
1315}
1416h1 ,.h1 {
17+ font-family :var (--font-family-primary );
1518font-weight :$font-weight-bold ;font-size :var (--h1-font-size );line-height :var (--h1-line-height );
1619@include media-breakpoint-down (md) {
1720font-size :$h1-font-size ;line-height :48px ;
1821 }
1922}
2023h2 ,.h2 {
24+ font-family :var (--font-family-primary );
2125font-weight :$font-weight-bold ;font-size :var (--h2-font-size );line-height :var (--h2-line-height );
2226@include media-breakpoint-down (md) {
2327font-size :40px ;line-height :44px ;
2428 }
2529}
2630h3 ,.h3 {
31+ font-family :var (--font-family-primary );
2732font-weight :$font-weight-bold ;font-size :var (--h3-font-size );line-height :var (--h3-line-height );
2833@include media-breakpoint-down (md) {
2934font-size :32px ;line-height :36px ;
3035 }
3136}
3237h4 ,.h4 {
38+ font-family :var (--font-family-primary );
3339font-weight :$font-weight-bold ;font-size :var (--h4-font-size );line-height :var (--h4-line-height );
3440@include media-breakpoint-down (md) {
3541font-size :28px ;line-height :32px ;
3642 }
3743}
3844h5 ,.h5 {
45+ font-family :var (--font-family-primary );
3946font-weight :$font-weight-bold ;font-size :var (--h5-font-size );line-height :var (--h5-line-height );
4047@include media-breakpoint-down (md) {
4148font-size :24px ;line-height :28px ;
4249 }
4350}
4451h6 ,.h6 {
52+ font-family :var (--font-family-primary );
4553font-weight :$font-weight-bold ;font-size :var (--h6-font-size );line-height :var (--h6-line-height );
4654@include media-breakpoint-down (md) {
4755font-size :20px ;line-height :26px ;
4856 }
4957}
5058
5159.eyebrow-text {
60+ font-family :var (--font-family-primary );
5261font-weight :$font-weight-bold ;font-size :var (--eyebrow-font-size );line-height :var (--eyebrow-line-height );
5362@include media-breakpoint-down (md) {
5463font-size :16px ;line-height :22px ;
5564 }
5665}
5766
5867.subcopy-text {
59- font-family :' inter ' , sans-serif ;
68+ font-family :var ( --font-family-secondary ) ;
6069font-size :18px ;
6170line-height :22px ;
6271}
6372
6473.body-large-text {
74+ font-family :var (--font-family-secondary );
6575font-size :var (--body-large-font-size );line-height :var (--body-large-line-height );
6676@include media-breakpoint-down (md) {
6777font-size :18px ;line-height :24px ;
6878 }
6979}
7080
71- // default body text size
72- .body-regular-text ,p {
81+ // default body text
82+ .body-regular-text ,p ,body {
83+ font-family :var (--font-family-secondary );
7384font-size :var (--body-regular-font-size );line-height :var (--body-regular-line-height );
7485@include media-breakpoint-down (md) {
7586font-size :16px ;line-height :20px ;
7687 }
7788}
7889
7990.body-small-text {
91+ font-family :var (--font-family-secondary );
8092font-size :var (--body-small-font-size );line-height :var (--body-small-line-height );
8193@include media-breakpoint-down (md) {
8294font-size :14px ;line-height :18px ;
8395 }
8496}
8597
8698.legal-text {
87- font-family :Inter ;
99+ font-family :var ( --font-family-secondary ) ;
88100font-size :var (--legal-font-size );
89101line-height :var (--legal-line-height );
90102@include media-breakpoint-down (md) {
@@ -110,7 +122,6 @@ h6, .h6 {
110122.text-white ,.text-white-100 {
111123color :#{$gray-100 } !important ;
112124}
113-
114125.text-purple {
115126color :#{$purple } !important ;
116127}
@@ -140,3 +151,11 @@ h6, .h6 {
140151.text-gradient-party ,.party-time {
141152@include text-gradient ($gradient-text );
142153}
154+
155+ .font-family-primary {
156+ font-family :var (--font-family-primary )!important ;
157+ }
158+
159+ .font-family-secondary {
160+ font-family :var (--font-family-secondary )!important ;
161+ }