I am building my first website and I would like to use Monserrat Black.
When I'm typing the classic "font-weight: 900; in my CSS file" the result is obviously bolder Thant the "regular", but not as bold as it should be, comparing to what I see when I look at it in, let say Adobe Illustrator (AI).
I have written the following code in the HTML file
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
And this in the CSS (as mentioned in this page : How do I set 'semi-bold' font via CSS? Font-weight of 600 doesn't make it look like the semi-bold I see in my Photoshop file)
{
font-family: "Montserrat";
text-align: left;
}
.titreSection
{
font-weight: 900;
}
The font produced in my web browser:
The font as it should appear (screenshot taken in AI):
Is there a way to easily select Black, Thin, Thin Italic, Semibold etc. into CSS ?
Thank you ivre much for you patience, this is my first website...