Fonts

You can change the fonts to those that you like. To do this, download the font, paste it into the fonts folder, and connect them using the main.css (or fonts.scss) file. When you do this, change the variable –primary-font to the font you need. You can connect the font using this code:

  1. @font-face {
  2. font-family: "Montserrat";
  3. src: url('../fonts/Montserrat-ExtraLightItalic.ttf') format('truetype');
  4. font-weight: 100;
  5. font-style: italic;
  6. font-stretch: normal;
  7. }
  8. @font-face {
  9. font-family: "Montserrat";
  10. src: url('../fonts/Montserrat-ExtraLight.ttf') format('truetype');
  11. font-weight: 100;
  12. font-style: normal;
  13. font-stretch: normal;
  14. }
  15. @font-face {
  16. font-family: "Montserrat";
  17. src: url('../fonts/Montserrat-LightItalic.ttf') format('truetype');
  18. font-weight: 200;
  19. font-style: italic;
  20. font-stretch: normal;
  21. }
  22. @font-face {
  23. font-family: "Montserrat";
  24. src: url('../fonts/Montserrat-Light.ttf') format('truetype');
  25. font-weight: 200;
  26. font-style: normal;
  27. font-stretch: normal;
  28. }
  29. @font-face {
  30. font-family: "Montserrat";
  31. src: url('../fonts/Montserrat-ThinItalic.ttf') format('truetype');
  32. font-weight: 300;
  33. font-style: italic;
  34. font-stretch: normal;
  35. }
  36. @font-face {
  37. font-family: "Montserrat";
  38. src: url('../fonts/Montserrat-Thin.ttf') format('truetype');
  39. font-weight: 300;
  40. font-style: normal;
  41. font-stretch: normal;
  42. }
  43. @font-face {
  44. font-family: "Montserrat";
  45. src: url('../fonts/Montserrat-Italic.ttf') format('truetype');
  46. font-weight: 400;
  47. font-style: italic;
  48. font-stretch: normal;
  49. }
  50. @font-face {
  51. font-family: "Montserrat";
  52. src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  53. font-weight: 400;
  54. font-style: normal;
  55. font-stretch: normal;
  56. }
  57. @font-face {
  58. font-family: "Montserrat";
  59. src: url('../fonts/Montserrat-SemiBoldItalic.ttf') format('truetype');
  60. font-weight: 500;
  61. font-style: italic;
  62. font-stretch: normal;
  63. }
  64. @font-face {
  65. font-family: "Montserrat";
  66. src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  67. font-weight: 500;
  68. font-style: normal;
  69. font-stretch: normal;
  70. }
  71. @font-face {
  72. font-family: "Montserrat";
  73. src: url('../fonts/Montserrat-BoldItalic.ttf') format('truetype');
  74. font-weight: 600;
  75. font-style: italic;
  76. font-stretch: normal;
  77. }
  78. @font-face {
  79. font-family: "Montserrat";
  80. src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  81. font-weight: 600;
  82. font-style: normal;
  83. font-stretch: normal;
  84. }
  85. @font-face {
  86. font-family: "Montserrat";
  87. src: url('../fonts/Montserrat-ExtraBoldItalic.ttf') format('truetype');
  88. font-weight: 700;
  89. font-style: italic;
  90. font-stretch: normal;
  91. }
  92. @font-face {
  93. font-family: "Montserrat";
  94. src: url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
  95. font-weight: 700;
  96. font-style: normal;
  97. font-stretch: normal;
  98. }
  99. @font-face {
  100. font-family: "Montserrat";
  101. src: url('../fonts/Montserrat-BlackItalic.ttf') format('truetype');
  102. font-weight: 800;
  103. font-style: italic;
  104. font-stretch: normal;
  105. }
  106. @font-face {
  107. font-family: "Montserrat";
  108. src: url('../fonts/Montserrat-Black.ttf') format('truetype');
  109. font-weight: 800;
  110. font-style: normal;
  111. font-stretch: normal;
  112. }
@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-ExtraLightItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-ExtraLight.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-LightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-Light.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-ThinItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-Thin.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-SemiBoldItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-BoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-BlackItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-stretch: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-Black.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-stretch: normal;
}