/* Load Open Sans with all weights needed */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap');

/* Apply Open Sans to the body or paragraphs */
body, p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400; /* Regular by default */
}

/* Style  and  with real bold */
strong, b, dfn, kbd {
    font-weight: 700; /* Now this will use real bold */
}