I think I was able to get it using info from another post a couple years back.
If there is a better, simpler way. by all means please let me know. It works for todays current month. but I want to test and make sure that it will work for the future months to come, we'll see 👀
=IF(MONTH(TODAY()) = 1, "January", IF(MONTH(TODAY()) = 2, "February", IF(MONTH(TODAY()) = 3, "March", IF(MONTH(TODAY()) = 4, "April", IF(MONTH(TODAY()) = 5, "May", IF(MONTH(TODAY()) = 6, "June", IF(MONTH(TODAY()) = 7, "July", IF(MONTH(TODAY()) = 8, "August", IF(MONTH(TODAY()) = 9, "September", IF(MONTH(TODAY()) = 10, "October", IF(MONTH(TODAY()) = 11, "November", IF(MONTH(TODAY()) = 12, "December", ""))))))))))))