Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. // font family
  2. $font-monserrat: 'Montserrat';
  3. $font-geometria: 'Geometria';
  4.  
  5. // font weight
  6. $font-regular: 400;
  7. $font-bold: 600;
  8.  
  9. body {
  10. font-family: $font-monserrat;
  11. font-weight: $font-regular;
  12. }
  13.  
  14. h1 {
  15. font-family: $font-geometria;
  16. font-weight: $font-bold;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement