I'd like to set the main font in my document to 11.5 points. I realize this is not possible using one of the preset options for the article document class, so I tried to follow the instructions here. Here's my MWE:
\documentclass[11pt, a4paper]{article}
\usepackage{fontspec}
\usepackage{blindtext}
\setmainfont{Times New Roman}
\fontsize{13pt}{13pt}\selectfont
\begin{document}
\blindtext
\end{document}
However, setting the fontsize as shown does not change the size for my main font.
How can I get my main, default font to be 11.5 points?