/* This csss file adds Poppins fonts (3 weights) and text styles for navigation hotspot */




/* import the fonts  */

@font-face {
  font-family: Poppins;
  src: url(assets/fonts/Poppins-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Poppins;
  src: url(assets/fonts/Poppins-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Poppins;
  src: url(assets/fonts/Poppins-Bold.ttf);
  font-weight: 700;
}




/* Replace the fonts */

body { font-family: Poppins, Helvetica, Arial, sans-serif; }




/* Define text styles for navigation hotspot */

.nav_hs_desktop {
  font-weight: 400;
  font-size: 14px;
}

.nav_hs_mobile_window {
  font-weight: 500;
  font-size: 24px;
  line-height: 115%;
}



