you can find the font of any page by right-clicking and pressing inspect, then you can just select which part you want to look at (also good if you want to know how something works on a page)
but to save you some time, the first page uses "ms pgothic" and the second page uses "ms gothic"
as for applying the font, the easiest way is to use this since these fonts are web-safe
font-face {
font-family: 'name of your font (without quotes)';
}
then put this under your body section in your css file and then you should be golden
font-family: 'your font name';