The 'font-weight' property specifies the weight of the font.
normal weight equates to 400 whilst bold equates to 700.
normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900
p { font-weight: normal } /* 400 */
h1 { font-weight: 700 } /* bold */
body { font-weight: 400 }
strong { font-weight: bolder } /* 500 if available */