Hi
there are differnt font size used on site .
Add below code in custom.css file to change the default font size .
body {
font-size: 14px;
}
To check other font -size you can use inspect element from Google chrome to check the font size style code and then override it via custom.css file .
For example article title : http://prntscr.com/awx4w5
Now override it in custom.css file
.item-page > article .article-header .article-title {
font-size: 54px;
}
Change the font size as per needs .
The same i suggested above font size changes .
Hope it helps .