Please do not post login credentials here. These forums are completely public. Please change the password of that account immediately. We do not review installs on request either.
I've no idea what you're asking regarding the font. You mean the font looks different on their computer compared to yours? We use the following font set by Bootstrap.
Code:
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
It's set on the CSS selector cb_template so you can override it to whatever you like. Looks like you're already doing that in your CB template CSS overrides with the below (note your cb_template against the body element selector is not necessary).
Code:
.cb_template body,
.cb_template {
font-family: nunito;
}
I can't help you in regards to any font styles your Joomla template applies. If you want CB to not set this at all you can use the below.
Code:
.cb_template {
font-family: unset;
}