@import url('https://fonts.googleapis.com/css?family=Montserrat:400,400i,700,700i');@import url('https://fonts.googleapis.com/css?family=Lobster+Two:400,400i,700,700i');@mixin font_textos {	font-family: 'Montserrat', sans-serif;}@mixin font_titulos {	font-family: 'Lobster Two', cursive; font-weight: 400;}.headings {	@include font_titulos;    color: #000;  }@each $header, $size in (h1: 1.7em, h2: 1.5em, h3: 1.3em, h4: 1.2em, h5: 1.1em, h6: 1em) {	#{$header} {		@extend .headings;       font-size: $size;        margin-bottom: $size * 0.5;	}}p {	@include font_textos;	strong {		font-weight: 700;	}}